home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / test_unittest.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  1KB  |  34 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Test script for unittest.
  5.  
  6. This just includes tests for new features.  We really need a
  7. full set of tests.
  8. '''
  9. import unittest
  10.  
  11. def test_TestSuite_iter():
  12.     '''
  13.     >>> test1 = unittest.FunctionTestCase(lambda: None)
  14.     >>> test2 = unittest.FunctionTestCase(lambda: None)
  15.     >>> suite = unittest.TestSuite((test1, test2))
  16.     >>> tests = []
  17.     >>> for test in suite:
  18.     ...     tests.append(test)
  19.     >>> tests == [test1, test2]
  20.     True
  21.     '''
  22.     pass
  23.  
  24.  
  25. def test_main():
  26.     test_support = test_support
  27.     test_unittest = test_unittest
  28.     import test
  29.     test_support.run_doctest(test_unittest, verbosity = True)
  30.  
  31. if __name__ == '__main__':
  32.     test_main()
  33.  
  34.